home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 4,101 to 4,200 / aol-file-protocol-4400-4101-to-4200.zip / AOLDLs / ADV - Message Board Archives / Archived Msgs_ Bugs in MABasic / AO.MABUGS.log next >
Text File  |  2014-11-30  |  3KB  |  97 lines

  1. America Online Archived Messages!
  2. Distribute freely, but don't modify.
  3. Archived Path: "BASIC/BUGS in Micol Adv BASIC..."
  4. Copyright America Online.
  5. ===============================================================================
  6. Subj:  BUG posting!                          90-11-04 22:36:55 EST
  7. From:  MaBug
  8. Posted on: America Online
  9.  
  10. The Micol Advanced BASIC Users Group is trying to compile a list of known, and not so know bugs in ALL versions the Micol Advanced BASIC for the e and gs.
  11.  
  12. If you have any bugs that you know of, please post them here.
  13. \
  14. Thank you.
  15.  
  16. Path: BASIC/BUGS in Micol Adv BASIC...
  17.  
  18. Subj:  known bug!                            90-11-04 22:40:06 EST
  19. From:  MaBug
  20. Posted on: America Online
  21.  
  22. OK, I start this off...
  23.  
  24. the sample code is...
  25.  
  26. PROGRAM Bugy_Test
  27.  
  28.   DATA -10, -20.0
  29.  
  30.   READ A%, B&
  31.  
  32.   PRINT A%, B&
  33.  
  34. END
  35.  
  36.  
  37. The above code will display...
  38.  
  39. 10       -20
  40.  
  41. Notice that the -10 from the DATA statement did not display.
  42.  
  43. This bug is in all versions of MAB for the gs.
  44.  
  45.  
  46. It has been fixed in 4.0
  47.  
  48. Path: BASIC/BUGS in Micol Adv BASIC...
  49.  
  50. Subj:  Not a Bug, but...                     90-11-04 22:44:15 EST
  51. From:  MaBug
  52. Posted on: America Online
  53.  
  54. OK, another one...
  55.  
  56. If you use the WOPEN command to create a TEXt file to disk, the file will be a ASCII high-bit file. It will not be the stadard ASCII high-bit-off TEXT file that EVERY application assumes a $04 TEXT file type would be!
  57.  
  58. THe only work around we have come up with is to BLOAD the TEXT file into memory, run a small program over it to turn off the high-bits, and then BSAVE the file back to disk. The only problem with that is now the newly saved file will have a $06 BIN file type on it!
  59.  
  60. The way around that is to write a small utility to change the file type!
  61.  
  62. This small little _feature_ has been removed from version 4.0!
  63.  
  64. Path: BASIC/BUGS in Micol Adv BASIC...
  65.  
  66. Subj:  StatText _Bug_?                       90-11-08 22:38:35 EST
  67. From:  CodeMaster
  68. Posted on: America Online
  69.  
  70. Try this one!
  71.  
  72. If you use the built-in DIALOG command structure to make Dialog Boxes, you need to be aware of a small little feature! :)
  73.  
  74. When you define a string as StatText in MAB array structure, you cannot have it over 64 characters. IF it is, the compiler will MOD 64 the length of the text and only use that product.
  75.  
  76. Meaing, if you have a string 70 characters long, it will only use the first 6 ( 64 MOD 70 = 6 ).
  77.  
  78. Just a note to the wise! :)
  79.  
  80. CodeSmith
  81.  
  82. Path: BASIC/BUGS in Micol Adv BASIC...
  83.  
  84. Subj:  EXE.TO.CDA Nightmare                  90-11-09 22:05:21 EST
  85. From:  Pooh Bear6
  86. Posted on: America Online
  87.  
  88. Dear MABug,
  89.  
  90. I don't know if this is a bug or not (probably just operator error), but it's driving me crazy.
  91.  
  92. I'm trying to convert an EXE program to a CDA.  I run Make.CDA & give it the name of the EXE file I want to convert.  When I try to give it the name the CDA will be called, first I get a ProDOS error $4B Unsupported Storage Type, then after changing the name to something else I get a File Open error.
  93.  
  94. Please give me a little help in what the Make.CDA program is expecting & what kinds of names are allowed.  (Before ALL my hair is gone.)
  95.                       Thanks
  96.                          Pooh Bear6
  97.